@include('testimonial::public.testimonial.partial.header')
@include('testimonial::public.testimonial.partial.aside')
{{$testimonial->title}}

{!! $testimonial['id'] !!}

{!! $testimonial['name'] !!}

{!! $testimonial['designation'] !!}

{!! $testimonial['description'] !!}

{!! $testimonial['image'] !!}

{!! $testimonial['date'] !!}

{!! $testimonial['slug'] !!}

{!! $testimonial['status'] !!}

{!! $testimonial['user_id'] !!}

{!! $testimonial['user_type'] !!}

{!! $testimonial['upload_folder'] !!}

{!! $testimonial['deleted_at'] !!}

{!! $testimonial['created_at'] !!}

{!! $testimonial['updated_at'] !!}
{!! Form::text('name') -> label(trans('testimonial::testimonial.label.name')) -> placeholder(trans('testimonial::testimonial.placeholder.name'))!!}
{!! Form::text('description') -> label(trans('testimonial::testimonial.label.description')) -> placeholder(trans('testimonial::testimonial.placeholder.description'))!!}
{!! $testimonial->files('image') ->url($testimonial->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $testimonial->files('image') ->editor()!!}